{gridName}_date

specifies the date in the header of the view

startDatethe start date of the view
endDatethe end date of the view

Available only in PRO Edition

Example

//default definition
scheduler.templates.grid_date = function(start, end){
    return scheduler.templates.day_date(start)
    + " - "
    + scheduler.templates.day_date(end);
};

Applicable views:Grid View
Details

The template requires the grid_view plugin to be activated.

See also
Back to top